From 92a2284bb24a8285f100d6177051c0880647d922 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 12 Nov 2011 04:55:32 +0100 Subject: [PATCH] tests: Ensure the treeview is expanded Otherwise the test code might ignore collapsed rows, which makes it go rather fast. --- tests/a11y/tree-performance.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/a11y/tree-performance.c b/tests/a11y/tree-performance.c index 1361f070d7..d75599fe99 100644 --- a/tests/a11y/tree-performance.c +++ b/tests/a11y/tree-performance.c @@ -286,6 +286,8 @@ populate_tree (GtkBuilder *builder) gtk_tree_store_append (store, &iter, &iter); gtk_tree_store_set (store, &iter, 0, "Bla", 1, "Bla bla", 2, "Bla bla bla", 3, i % 2 == 0 ? TRUE : FALSE, 4, i % 100, 5, i, -1); } + + gtk_tree_view_expand_all (tv); } static void -- 2.30.2